import os, shutil, glob
import zlib, gzip, bz2, zipfile, tarfile
gzip
zlib
提供了对字符串进行压缩和解压缩的功能:
orginal = "this is a test string"
compressed = zlib.compress(orginal)
print compressed
print zlib.decompress(compressed)
同时提供了两种校验和的计算方法:
print zlib.adler32(orginal) & 0xffffffff
print zlib.crc32(orginal) & 0xffffffff
gzip
模块可以产生 .gz
格式的文件,其压缩方式由 zlib
模块提供。
我们可以通过 gzip.open
方法来读写 .gz
格式的文件:
content = "Lots of content here"
with gzip.open('file.txt.gz', 'wb') as f:
f.write(content)
读:
with gzip.open('file.txt.gz', 'rb') as f:
file_content = f.read()
print file_content
将压缩文件内容解压出来:
with gzip.open('file.txt.gz', 'rb') as f_in, open('file.txt', 'wb') as f_out:
shutil.copyfileobj(f_in, f_out)
此时,目录下应有 file.txt
文件,内容为:
with open("file.txt") as f:
print f.read()
os.remove("file.txt.gz")
bz2
模块提供了另一种压缩文件的方法:
orginal = "this is a test string"
compressed = bz2.compress(orginal)
print compressed
print bz2.decompress(compressed)
产生一些 file.txt
的复制:
for i in range(10):
shutil.copy("file.txt", "file.txt." + str(i))
将这些复制全部压缩到一个 .zip
文件中:
f = zipfile.ZipFile('files.zip','w')
for name in glob.glob("*.txt.[0-9]"):
f.write(name)
os.remove(name)
f.close()
解压这个 .zip
文件,用 namelist
方法查看压缩文件中的子文件名:
f = zipfile.ZipFile('files.zip','r')
print f.namelist()
使用 f.read(name)
方法来读取 name
文件中的内容:
for name in f.namelist():
print name, "content:", f.read(name)
f.close()
可以用 extract(name)
或者 extractall()
解压单个或者全部文件。
支持 .tar
格式文件的读写:
例如可以这样将 file.txt
写入:
f = tarfile.open("file.txt.tar", "w")
f.add("file.txt")
f.close()
清理生成的文件:
os.remove("file.txt")
os.remove("file.txt.tar")
os.remove("files.zip")